home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19980424-19980901 / 000330_news@newsmaster….columbia.edu _Sat Aug 1 13:41:39 1998.msg < prev    next >
Internet Message Format  |  1998-08-31  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id NAA01215
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sat, 1 Aug 1998 13:41:39 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id NAA05553
  7.     for kermit.misc@watsun; Sat, 1 Aug 1998 13:41:38 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Help with basics.
  12. Date: 1 Aug 1998 17:41:37 GMT
  13. Organization: Columbia University
  14. Lines: 42
  15. Message-ID: <6pvk0h$7kv$1@apakabar.cc.columbia.edu>
  16. References: <6puirh$e05$1@phaedrus.zeta.org.au>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9041
  19.  
  20. In article <6puirh$e05$1@phaedrus.zeta.org.au>,
  21. Tim Jelliffe <z2211406@student.unsw.edu.au> wrote:
  22. : I am attempting to use C-kermit 5 on a Sun Sparc, with UNIX, to login to the
  23. : uni dialup service. The modem is on port A. The commands I am using at the
  24. : moment are:
  25. : set line /dev/ttya
  26. : set modem hayes
  27. : set speed 19200
  28. : dial 98371933
  29. : connect
  30. : exit
  31. : I am having two problems. One, it seems to have trouble most of the time
  32. : initializing the modem, however it does occasionally work, and start to
  33. : dial. Why does it not initialize some times?
  34. :
  35. As noted in the manual, the necessary sequence is:
  36.  
  37.   set modem type xxxx
  38.   set line /dev/ttya
  39.   set speed 19200
  40.   dial 98371933
  41.  
  42. If you SET LINE before you SET MODE, Kermit does not know it is a modem-
  43. control device when it opens it.
  44.  
  45. : Two, when it does get through,
  46. : I can not get to login, as the screen is still blank, and there is no
  47. : response to any commands.
  48. "hayes" is probably not the right choice.  It means "hayes-1200" or
  49. "hayes-2400", whereas you probably are using something newer, which has
  50. totally different characteristics and behavior.  This is explained in great
  51. detail in the manual.  Type "set modem type ?" to see a list of supported
  52. modems.
  53.  
  54. By the way, the current version of C-Kermit is 6.0:
  55.  
  56.   http://www.columbia.edu/kermit/ck60.html
  57.  
  58. - Frank